/******************************************************************************* * Copyright (c) 2007, 2015 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation ******************************************************************************/ package org.eclipse.ui.internal.tweaklets; import org.eclipse.jface.preference.IPreferenceStore; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.graphics.Font; import org.eclipse.swt.graphics.FontData; import org.eclipse.swt.graphics.RGB; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Display; import org.eclipse.ui.IEditorInput; import org.eclipse.ui.IEditorReference; import org.eclipse.ui.internal.IPreferenceConstants; import org.eclipse.ui.internal.WorkbenchPage; import org.eclipse.ui.internal.WorkbenchPlugin; import org.eclipse.ui.internal.registry.EditorDescriptor; import org.eclipse.ui.internal.tweaklets.Tweaklets.TweakKey; /** * @since 3.3 * */ public abstract class TabBehaviour { public static TweakKey KEY = new Tweaklets.TweakKey(TabBehaviour.class); static { Tweaklets.setDefault(TabBehaviour.KEY, new TabBehaviourMRU()); } /** * * @return */ public abstract boolean alwaysShowPinAction(); /** * * @param page * @return */ public abstract IEditorReference findReusableEditor(WorkbenchPage page); public abstract IEditorReference reuseInternalEditor(WorkbenchPage page, Object manager, Object editorPresentation, EditorDescriptor desc, IEditorInput input, IEditorReference reusableEditorRef); /** * Does nothing by default. Can be overridden by subclasses. * * @param editorReuseGroup * @param showMultipleEditorTabs */ public void setPreferenceVisibility(Composite editorReuseGroup, Button showMultipleEditorTabs) { } /** * @return */ public boolean autoPinOnDirty() { return false; } /** * @return */ public boolean isPerTabHistoryEnabled() { return false; } /** * @param originalMatchFlags * @return */ public int getReuseEditorMatchFlags(int originalMatchFlags) { return originalMatchFlags; } /** * @return */ public int getEditorReuseThreshold() { IPreferenceStore store = WorkbenchPlugin.getDefault() .getPreferenceStore(); return store.getInt(IPreferenceConstants.REUSE_EDITORS); } /** * @return */ public boolean enableMRUTabVisibility() { return true; } public boolean sortEditorListAlphabetically() { return true; } public Color createVisibleEditorsColor(Display display, RGB originalForegroundColor, RGB originalBackgroundColor) { return new Color(display, originalForegroundColor); } public Font createVisibleEditorsFont(Display display, Font originalFont) { FontData fontData[] = originalFont.getFontData(); return new Font(display, fontData); } public Font createInvisibleEditorsFont(Display display, Font originalFont) { FontData fontData[] = originalFont.getFontData(); // Adding the bold attribute for (FontData element : fontData) { element.setStyle(element.getStyle() | SWT.BOLD); } return new Font(display, fontData); } }